4664517df5d8104777d53352f1f525f88ecec5f7,core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerCSVAbstract.java,ORecordSerializerCSVAbstract,embeddedCollectionFromStream,#ODatabaseRecord#OType#OClass#OType#String#,387
Before Change
if (iLinkedType == null)
throw new IllegalArgumentException(
"Linked type can't be null. Probably the serialized type has not stored the type along with data");
coll.add(OStringSerializerHelper.fieldTypeFromStream(iLinkedType, item));
}
}
After Change
if (iLinkedType == null)
throw new IllegalArgumentException(
"Linked type can't be null. Probably the serialized type has not stored the type along with data");
objectToAdd = OStringSerializerHelper.fieldTypeFromStream(iLinkedType, item);
}
if (objectToAdd != null) {
if (objectToAdd instanceof ODocument)
((ODocument) objectToAdd).setOwner(iDocument);
coll.add(objectToAdd);